
        /* Basic styling for the page */
        body {
            font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: large;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            background-color: #f4f4f4;
        }
        header {
            background-color: #00263b;
            color: white;
            text-align: center;
            padding: 1rem;
        }
        .container {
            width: 80%;
            margin: 2rem auto;
            background-color: white;
            padding: 2rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        h1, h2, h3 {
            color: #c41111;
        }
        p, ul, ol {
            font-size: 1rem;
            color: #555;
        }
        .terms-list {
            list-style-type: none;
            padding-left: 0;
        }
        .terms-list li {
            padding-left: 20px;
            position: relative;
        }
        .terms-list li::before {
            content: "\2022";
            color: #007BFF;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        .section {
            margin-bottom: 2rem;
        }
        footer {
            text-align: center;
            background-color: #333;
            color: white;
            padding: 1rem;
            position: relative;
            bottom: 0;
            width: auto;
        }

        /* Responsive styling */
        @media (max-width: 768px) {
            .container {
                width: 90%;
            }
            h1 {
                font-size: 1.5rem;
            }
            p, ul, ol {
                font-size: 0.9rem;
            }
        }
   